home *** CD-ROM | disk | FTP | other *** search
/ Greenhouse Effect Detection Expriment / NASA Greenhouse Effect Detection Expriment 1992 - Disc 2.iso / software / dos / cdf22pc / src / include / cdfinq.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-26  |  1.1 KB  |  43 lines

  1. /******************************************************************************
  2. *
  3. *  NSSDC/CDF                    Header file for CDFinquire.
  4. *
  5. *  Version 1.1, 24-Feb-92, ST Systems (STX)
  6. *
  7. *  Modification history:
  8. *
  9. *   V1.0  24-Feb-92, J Love    Original version.
  10. *
  11. ******************************************************************************/
  12.  
  13. /******************************************************************************
  14. * Macro constants.
  15. ******************************************************************************/
  16.  
  17. #define MAX_COL_TO_USE        78
  18.  
  19. /******************************************************************************
  20. * Function Prototypes.
  21. ******************************************************************************/
  22.  
  23. #if defined(vms) | defined(__MSDOS__)
  24. void OutInfoBlock (void);
  25. void OutHeaderBlock (void);
  26. void OutGlobalAttrs (void);
  27. void OutVarAttrs (void);
  28. void OutVariables (void);
  29. void DisplayVerRelInc (void);
  30. void StatusHandler (CDFstatus);
  31. #endif
  32.  
  33. #if defined(unix)
  34. void OutInfoBlock ();
  35. void OutHeaderBlock ();
  36. void OutGlobalAttrs ();
  37. void OutVarAttrs ();
  38. void OutVariables ();
  39. void DisplayVerRelInc ();
  40. void StatusHandler ();
  41. #endif
  42.  
  43.